home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / f2c / may_5_92.lha / f2c.VMay_5_1992 / libF77 / h_dim.c < prev    next >
C/C++ Source or Header  |  1992-05-07  |  116b  |  10 lines

  1. #include "f2c.h"
  2.  
  3. extern integer s_cmp();
  4.  
  5. shortint h_dim(a,b)
  6. shortint *a, *b;
  7. {
  8. return( *a > *b ? *a - *b : 0);
  9. }
  10.